home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / setp.h < prev    next >
C/C++ Source or Header  |  1996-01-30  |  951b  |  39 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9.  
  10. char *set_arb(Set);
  11. Set set_copy(Set);
  12. Set set_del(Set, char *);
  13. void set_free(Set);
  14. char *set_from(Set);
  15. Set set_less(Set, char *);
  16. Set set_new(int);
  17. Set set_new1(char *);
  18. int set_mem(char *, Set);
  19. int set_size(Set);
  20. int set_subset(Set, Set);
  21. Set set_union(Set, Set);
  22. Set set_with(Set, char *);
  23. void tup_init();
  24. Tuple tup_add(Tuple, Tuple);
  25. Tuple tup_copy(Tuple);
  26. Tuple tup_exp(Tuple, unsigned int);
  27. void tup_free(Tuple);
  28. char *tup_frome(Tuple);
  29. char *tup_fromb(Tuple);
  30. int tup_mem(char *, Tuple);
  31. int tup_memi(char *, Tuple);
  32. int tup_memstr(char *, Tuple);
  33. Tuple tup_new(int);
  34. Tuple tup_new1(char *);
  35. Tuple tup_new2(char *, char *);
  36. int tup_size(Tuple);
  37. Tuple tup_with(Tuple, char *);
  38. Set set_diff(Set, Set);
  39.